home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / make / icmake-6.000 / icmake-6 / icmake / exec / funascst.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  497 b   |  25 lines

  1. /*
  2. \fucref{fun\_ascii\_int}{void fun\_ascii\_int ()}
  3.     {}
  4.     {}
  5.     {}
  6.     {}
  7.     {funascst.c}
  8.     {
  9.  
  10.         This function is called when a call to the built-in function {\em
  11.         ascii} is to be processed. The function represents the opcode {\em
  12.         op\_ascii\_int}. The last pushed {\em e\_int} is converted to a
  13.         string.
  14.  
  15.     }
  16. */
  17.  
  18. #include "icm-exec.h"
  19.  
  20. void fun_ascii_int ()
  21. {
  22.     reg.type = e_int;
  23.     reg.vu.intval = * (stack [sp].vu.i->ls.str);
  24. }
  25.